home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------
- Copyright 1995, Steve Israelson
-
- I own this code. You are free to use this code in any software
- you want. You may not sell this source code at all, you can
- sell your product though. If you want to include this code
- in any code collection (CD-Roms etc) this is OK as long as
- I get a complimentary copy.
- Steve.
-
- ---------------------------------------------------------------*/
- #pragma once
-
- #include <LList.h>
-
- class MyParser
- {
- public:
- LList expressions; // holds the list of the regular expressions
-
- MyParser(void);
- ~MyParser();
- long Parse(char *text, LList *params);
- void AddExpression(char *text, long ID);
- };
-